home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / ab20 / ab20_archive / games / adventure / tobiastrek-1.lzh / S / startup-sequence < prev   
Text File  |  1990-10-21  |  1KB  |  57 lines

  1. ; AGAtron Star Trek Game
  2. ;    Startup-Sequence
  3.  
  4. ; Please leave it as it is
  5.  
  6. PatchNTSC
  7. Cls
  8. Bluestripes
  9. FastMemFirst
  10.  
  11. Echo "*N*E[1m                        AGAtron PD presents:"
  12. Echo "*E[3m                       *E[4m  The Star Trek Game  *E[0m*N"
  13. Type s/ReadMe
  14.  
  15. Ask " Wanna read the Docs (in German) ? (Y/N):"
  16. If WARN
  17.  more STDATA:StarTrek.DOC
  18. EndIf
  19.  
  20. Ask " Wanna see the Intro-Anim ? (Y/N):"
  21. If WARN
  22.  ShowAnim >Nil: TrekGame.preanim +4
  23. EndIf
  24.  
  25. CheckMem 1500000 
  26. If NOT WARN
  27.  Ask " Enough Memory - Copy DataDisk to RAM: ? (Y/N):"
  28.  If WARN
  29.   Echo "*N Copying Datadisk to RAM: ... *N"
  30.   Copy STDATA: ram: all quiet
  31.   Ask " Please Remove DataDisk, then press <Return>!"
  32.   Assign STDATA: RAM:
  33.  EndIf
  34.  Echo "*N Starting the Game ..."
  35.  FailAt 30000000  ; ahem...
  36.  StarTrek
  37.  FailAt 20
  38. Else
  39.  FailAt 30000000
  40.  CheckMem 600000
  41.  If WARN
  42.   Echo "*N 512K Memory only - Starting Special Version with less Sounds."
  43.   StarTrek512
  44.  Else
  45.   Echo "*N 1MB Memory - Starting the Game ..."
  46.   StarTrek
  47.  EndIf
  48.  FailAt 20
  49. EndIf
  50.  
  51. Type s/Bye
  52.  
  53. Show Enterprise.pic
  54.  
  55. ; End of Script
  56.  
  57.